home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr36 / day010.zip / DAY.DOC next >
Text File  |  1993-05-20  |  601b  |  21 lines

  1. DAY version 0.10 Copyright 1993 by MCR
  2.  
  3. DAY is a Freeware utility that is good for use in batch files and/or BBS
  4. system maintenance events that only take place on certain days of the
  5. week. DAY accepts a command line argument of a day name, and exits with
  6. an errorlevel 2 if the system date returns the corresponding day of the
  7. week.
  8.  
  9. USAGE:
  10.   DAY [weekday]
  11.   weekday = Sun, Mon, Tue, Wed, Thu, Fri, or Sat
  12.  
  13. EXAMPLE:
  14.   If DAY is run on a Monday, the following batch file fragment will delete
  15.   all files with the extension LOG:
  16.  
  17.   c:
  18.   cd\logs
  19.   DAY Mon
  20.   if errorlevel 2 del *.log
  21.